home *** CD-ROM | disk | FTP | other *** search
/ Interactive Web Graphics with Shout 3D / Interactive Web Graphics With Shout 3D.iso / mac / Shout3Ddemo / S3D_2E1.exe / Shout3d_runtime / codebase / applets / PyramidTestApplet.java < prev    next >
Text File  |  2000-09-01  |  831b  |  36 lines

  1. /**    
  2.     Company:        Eyematic Interfaces
  3.     Project:        Shout3D 2.0 Sample Code
  4.     Class:            PyramidTestApplet
  5.     Date:            Sep 1, 1999
  6.     Description:    Class for applet in which you click-drag to scale some pyramids
  7.     (C) Copyright Eyematic Interfaces, Inc. - 1997-2000 - All rights reserved
  8.  */
  9.  
  10. package applets;
  11.  
  12. import shout3d.*;
  13.  
  14. /**
  15.  * PyramidTestApplet
  16.  * 
  17.  * Shows how custom nodes can be added to Shout3D
  18.  * and used in applets.
  19.  * 
  20.  * This applet creates three Pyramid nodes (a custom node in the
  21.  * custom_nodes directory) and then changes their fields when
  22.  * the user click-drags them.
  23.  * 
  24.  * @author Dave Westwood
  25.  * @author Jim Stewartson
  26.  * @author Paul Isaacs
  27.  */
  28.  
  29. public class PyramidTestApplet extends Shout3DApplet {
  30.  
  31.     public void initShout3DPanel(){
  32.         panel = new PyramidTestPanel(this);
  33.     }
  34.     
  35. }
  36.